home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00084_DraggableListMgmt.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  6.7 KB  |  255 lines

  1. --
  2. -- DraggableListMgmt
  3. --
  4.  
  5. property ancestor
  6.  
  7. -- constants:
  8. property draggableDataMember  -- a created cast member holding pre-runtime gathered and sorted data
  9. property dragSpriteColor  -- the scoreColor of sprites that will be dragged to targets
  10.  
  11. property draggableList  -- a specially formatted list of draggable sprites
  12. property isDraggableList  -- a list of currently draggable sprites  -- for SinglePoint Draggable activities.
  13.  
  14.  
  15. on new me
  16.   -- constants:
  17.   set draggableDataMember = "DraggablePredefines"  -- currently we are using the name of the storage field.
  18.   set dragSpriteColor = 2  -- corresponds to green in the score. (0 = white)
  19.   
  20.   set ancestor = new (script "TargetListMgmt")
  21.   
  22.   set isDraggableList = []
  23.   setAt (isDraggableList, numSprites (me), 0)
  24.   gatherDraggableSpriteInfo (me)
  25.   return me
  26. end
  27.  
  28.  
  29. on destruct me
  30.   if objectP (ancestor) then destruct (ancestor)
  31.   set ancestor = 0
  32. end
  33.  
  34.  
  35.  
  36. -- gather draggable sprite information and return a list:
  37.  
  38. on gatherDraggableSpriteInfo me
  39.   -- get presaved draggable data if we are in protected mode:
  40.   if the movieName contains ".dxr" or the movieName contains ".exe" then 
  41.     set draggableList = value (field draggableDataMember)
  42.     return
  43.   end if
  44.   
  45.   set initList = [:]
  46.   set num = 0
  47.   
  48.   -- cycle through all sprites:
  49.   repeat with spr = 1 to numSprites (me)
  50.     
  51.     -- sprites must be certain colors to be used in the DragDrop Game:
  52.     if the scoreColor of sprite spr = dragSpriteColor then
  53.       set num = num + 1
  54.       -- gather usable information:
  55.       
  56.       set tmpLst = [#coverNum:the memberNum of sprite spr, #coverLib: the castLibNum of sprite spr, #loc:(the loc of sprite spr), #identifier:value ("#" & the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr), #myNum:0, #myLib:0, #matchSpriteList:0, #showFlag:0]
  57.       
  58.       -- add to the initList
  59.       addProp (initList, spr, tmpLst)
  60.     end if
  61.   end repeat
  62.   
  63.   if not count (initList) then alert "There are no draggable sprites for this activity.  Check sprite score colors."
  64.   else 
  65.     set draggableList = initList
  66.     makeField (me, draggableDataMember, draggableList)
  67.   end if
  68. end
  69.  
  70.  
  71.  
  72. -- return TRUE if the sprite is a draggable:
  73.  
  74. on isDraggable me, spr
  75.   return getAt (isDraggableList, spr)
  76.   
  77.   -- the following took too long:
  78.   --  set lst = getAProp (draggableList, spr)
  79.   --  if listP (lst) then 
  80.   --    if getAProp (lst, #showFlag) then return 1
  81.   --  end if
  82.   --  return 0
  83. end
  84.  
  85.  
  86. -- puppet all used sprites to TRUE
  87. -- assign each sprite its personal cover member
  88.  
  89. on hideDraggables me
  90.   set num = count (draggableList)
  91.   repeat with i = 1 to num
  92.     set spr = getPropAt (draggableList, i)
  93.     hideDraggable (me, spr)
  94.   end repeat
  95. end
  96.  
  97.  
  98. on showDraggables me
  99.   set num = count (draggableList)
  100.   repeat with i = 1 to num
  101.     set spr = getPropAt (draggableList, i)
  102.     showDraggable (me, spr)
  103.   end repeat  
  104. end
  105.  
  106.  
  107. -- hide an answer card by sprite number:
  108.  
  109. on hideDraggable me, spr
  110.   set lst = getProp (draggableList, spr)
  111.   if voidP (lst) then return 0
  112.   
  113.   set spr = integer(spr)
  114.   puppetSprite spr, TRUE
  115.   set the memberNum of sprite spr to getProp (lst, #coverNum)
  116.   set the castLibNum of sprite spr to getProp (lst, #coverLib)
  117.   set the loc of sprite spr to getProp (lst, #loc)
  118.   unloadCast (me)
  119.   setAProp (lst, #showFlag, 0)
  120.   setAProp (draggableList, spr, lst)
  121.   setAt (isDraggableList, spr, 0)
  122.   return 1
  123. end
  124.  
  125.  
  126. -- show a draggable by sprite number.
  127. -- return TRUE if a successful card turning.
  128.  
  129. on showDraggable me, spr
  130.   set lst = getAProp (draggableList, spr)
  131.   if voidP (lst) then return 0
  132.   
  133.   set the memberNum of sprite spr to getProp (lst, #myNum)
  134.   set the castLibNum of sprite spr to getProp (lst, #myLib)
  135.   set the loc of sprite spr to getProp (lst, #loc)
  136.   unloadCast (me)
  137.   setAProp (lst, #showFlag, 1)
  138.   setAProp (draggableList, spr, lst)
  139.   setAt (isDraggableList, spr, 1)
  140.   return 1
  141. end
  142.  
  143.  
  144. -- stick an answer card where it is by sprite number:
  145.  
  146. on stickDraggable me, spr
  147.   set lst = getProp (draggableList, spr)
  148.   if voidP (lst) then return 0
  149.   
  150.   set spr = integer(spr)
  151.   puppetSprite spr, TRUE
  152.   
  153.   setAProp (lst, #showFlag, 0)
  154.   setAProp (draggableList, spr, lst)
  155.   
  156.   setAt (isDraggableList, spr, 0)  -- new feature for #SinglePointStick  -- try other stick types
  157.   return 1
  158. end
  159.  
  160.  
  161.  
  162. -- check a draggable against it's matchSpriteList to see if it intersects one of its targets.
  163. -- by sprite number.
  164. -- return zero or the matching sprite number.
  165. -- this method does not mark the draggable (or the target) as shown.
  166. -- it just checks for a match.
  167. -- spr is the sprite of the draggable, testSpr is the sprite of the one pixel pointer under the mouse.
  168.  
  169.  
  170. on checkMatch me, spr, pointerSpr
  171.   set lst = getAProp (draggableList, spr)
  172.   set matchList = getAProp (lst, #matchSpriteList)
  173.   
  174.   if voidP (pointerSpr) then
  175.     set mRect = rect (the mouseH, the mouseV, the mouseH + 16, the mouseV + 16)
  176.     repeat with matchSprite in matchList
  177.       set tmp = intersect(mRect, the rect of sprite matchSprite)
  178.       if tmp <> rect (0,0,0,0) then return matchSprite
  179.       
  180.       -- alternative (not as fine a match):
  181.       -- if inside (endLoc, the rect of sprite matchSprite) then return matchSprite
  182.       -- if end drag point intersects matchSprite then return matchSprite
  183.       
  184.     end repeat
  185.     return 0
  186.   end if
  187.   
  188.   -- check by the one pixel pointer sprite under the cursor:
  189.   
  190.   repeat with matchSprite in matchList
  191.     
  192.     --    set tmp = intersect(mRect, the rect of sprite matchSprite)
  193.     --    if tmp <> rect (0,0,0,0) then return matchSprite
  194.     
  195.     if sprite pointerSpr intersects matchSprite then return matchSprite
  196.   end repeat
  197.   
  198.   return 0
  199. end
  200.  
  201.  
  202. -- check to see if we are done by checking to see if all draggables have been dropped correctly:
  203.  
  204. on checkDone me
  205.   set num = count (draggableList)
  206.   repeat with i = 1 to num
  207.     set spr = getPropAt (draggableList, i)
  208.     set lst = getProp (draggableList, spr)
  209.     -- if a sprite remains showing on the screen then we are not done.
  210.     -- #showFlag is used here for data structure compatibility with Match Game.
  211.     -- (the name may be altered later)
  212.     if getAProp (lst, #showFlag) then return 0
  213.   end repeat
  214.   return 1
  215. end
  216.  
  217.  
  218. -- return a list of currently draggable screen elements:
  219.  
  220. on getDraggableList me
  221.   set lst = []
  222.   repeat with i = 1 to numSprites (me)
  223.     if isDraggable (me, i) then add (lst, i)
  224.   end repeat
  225.   return lst
  226. end
  227.  
  228.  
  229. -- return a random draggable sprite:
  230.  
  231. on getRandomDraggable me
  232.   set lst = getDraggableList (me)
  233.   if count (lst) then
  234.     set num = random (count (lst))
  235.     set spr = getAt (lst, num)
  236.     return spr
  237.   else 
  238.     return 0
  239.   end if
  240. end
  241.  
  242.  
  243.  
  244. on getNextDraggable me
  245.   repeat with spr = 1 to numSprites (me)
  246.     if isDraggable (me, spr) then return spr
  247.   end repeat
  248.   return 0
  249. end
  250.  
  251. on getID me, spr
  252.   set lst = getAProp (draggableList, spr)
  253.   return getAProp (lst, #identifier)
  254. end
  255.